home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / Solitaire / Sources / Pyramid / DiscardCardPileDelegate.h < prev    next >
Text File  |  1994-01-11  |  903b  |  29 lines

  1. /* indent:4  tabsize:8  font:fixed-width */
  2.  
  3. /*--------------------------------------------------------------------------
  4. |---------------------------------------------------------------------------
  5. |
  6. |    DiscardCardPileDelegate : Object
  7. |
  8. |    An instance of this class acts as a delegate for messages from the 
  9. |    Discard Piles in the Pyramid solitaire game.
  10. | --------------------------------------------------------------------------
  11. \--------------------------------------------------------------------------*/
  12.  
  13. #import <appkit/appkit.h>
  14.  
  15. @interface DiscardCardPileDelegate:Object
  16. {
  17. }
  18.  
  19. /*----------------------------------------------------------------------------
  20. |
  21. |    CardPileView delegation methods
  22. |
  23. \---------------------------------------------------------------------------*/
  24.  
  25. - (BOOL)canAcceptPile:aCardPile from:sender in:discardCardPileView;
  26. - acceptPile:aCardPile in:discardCardPileView;
  27.  
  28. @end
  29.